home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-21 | 324 b | 15 lines | [TEXT/RLAB] |
- //-------------------------------------------------------------------//
-
- // Syntax: atanh ( X )
-
- // Description:
-
- // Atanh is the inverse hyperbolic tangent of the element(s) of X.
-
- //-------------------------------------------------------------------//
-
- atanh = function ( x )
- {
- return log ((1 + x) ./ (1 - x))/2;
- };
-